1d2416505b225c2b902a8f80cd75e13e7bfed377,cdap-api/src/main/java/co/cask/cdap/api/schedule/ScheduleSpecification.java,ScheduleSpecification,equals,#Object#,63
Before Change
ScheduleSpecification that = (ScheduleSpecification) o;
return Objects.equal(this.schedule, that.schedule) &&
Objects.equal(this.program, that.program) &&
Objects.equal(this.properties, that.properties);
}
After Change
ScheduleSpecification that = (ScheduleSpecification) o;
if (!program.equals(that.program) || !properties.equals(that.properties) || !schedule.equals(that.schedule)) {
return false;
}
return true;